@import url('https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap');
html {
    font-size: 92.5%;
    box-sizing: border-box;
}

h1 {
    border-bottom: 7px solid #eee;
}

body {
    font-family: 'Press Start 2P', sans-serif;
    background-color: rgb(31, 29, 29);
    color: whitesmoke;
}

.number {
    background: #eee;
    color: #333;
    font-size: 6rem;
    width: 15rem;
    padding: 3rem 0rem;
    text-align: center;
}

.guess {
    background: none;
    border: 4px solid #eee;
    font-family: inherit;
    color: inherit;
    font-size: 3rem;
    padding: 2rem;
    width: 15rem;
    text-align: center;
    display: block;
    margin-bottom: 3rem;
}

.btn {
    border: none;
    background-color: #eee;
    color: #222;
    font-size: 2rem;
    font-family: inherit;
    padding: 2rem 3rem;
    cursor: pointer;
}

.btn:hover {
    background-color: #ccc;
    color: #333;
}

.message {
    font-size: x-large;
}

.up {
    float: left;
    transform: translateX(160px);
}


/* .down {
    float: right;
    transform: translateX(150px);
}

.again {
    transform: translate(120px, 180px);
} */

.selectLvl {
    font-size: x-large;
}